flutter button with icon

92

IconButton(
            icon: Icon(
              Icons.directions_transit,
            ),
            onPressed: () {},
          ),
FlatButton.icon(onPressed: null, icon: null, label: null);
RaisedButton.icon(onPressed: null, icon: null, label: null);

Comments

Submit
0 Comments